home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / dbInt.h < prev    next >
C/C++ Source or Header  |  1989-01-13  |  961b  |  39 lines

  1. /*
  2.  * dbInt.h --
  3.  *
  4.  *    Declarations of constants and variables shared by the dataBase
  5.  *    routines.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $DBINT: proto.h,v 1.2 88/03/11 08:39:40 ouster Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DBINT
  20. #define _DBINT
  21.  
  22. #include <syslog.h>
  23. #include <sys/file.h>
  24. #include <sys/errno.h>
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27.  
  28. /*
  29.  * All database files are created with the following mode [for now, at
  30.  * least].
  31.  */
  32. #define FILE_MODE 0664
  33.  
  34. extern int errno;
  35. extern long lseek();
  36. extern char *strerror();
  37.  
  38. #endif _DBINT
  39.